home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / vyzkuste / triky / triky.exe / httrack-3.33.exe / {app} / src / httrack.c < prev    next >
C/C++ Source or Header  |  2004-11-27  |  21KB  |  654 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: htsshow.c console progress info                        */
  34. /* Only used on Linux version                                   */
  35. /* Author: Xavier Roche                                         */
  36. /* ------------------------------------------------------------ */
  37.  
  38. #ifndef _WIN32
  39. #ifndef Sleep
  40. #define Sleep(a) { if (((a)*1000)%1000000) usleep(((a)*1000)%1000000); if (((a)*1000)/1000000) sleep(((a)*1000)/1000000); }
  41. #endif
  42. #endif
  43.  
  44. #include "httrack-library.h"
  45.  
  46. #include "htsglobal.h"
  47. #include "htsbase.h"
  48. #include "htsopt.h"
  49. #include "httrack.h"
  50.  
  51. /* Static definitions */
  52. static int fexist(char* s);
  53. static int linput(FILE* fp,char* s,int max);
  54.  
  55.  
  56. // htswrap_add
  57. #include "htswrap.h"
  58.  
  59. #if HTS_ANALYSTE_CONSOLE
  60.  
  61. /* specific definitions */
  62. //#include "htsbase.h"
  63. #include <stdio.h>
  64. #include <stdlib.h>
  65. #include <string.h>
  66. #ifdef HAVE_SYS_TYPES_H
  67. #include <sys/types.h>
  68. #endif
  69. #ifdef HAVE_SYS_STAT_H
  70. #include <sys/stat.h>
  71. #endif
  72. #ifdef HAVE_UNISTD_H
  73. #include <unistd.h>
  74. #endif
  75. #include <ctype.h>
  76. /* END specific definitions */
  77.  
  78. // ISO VT100/220 definitions
  79. #define VT_COL_TEXT_BLACK    "30"
  80. #define VT_COL_TEXT_RED      "31"
  81. #define VT_COL_TEXT_GREEN    "32"
  82. #define VT_COL_TEXT_YELLOW   "33"
  83. #define VT_COL_TEXT_BLUE     "34"
  84. #define VT_COL_TEXT_MAGENTA  "35"
  85. #define VT_COL_TEXT_CYAN     "36"
  86. #define VT_COL_TEXT_WHITE    "37"
  87. #define VT_COL_BACK_BLACK    "40"
  88. #define VT_COL_BACK_RED      "41"
  89. #define VT_COL_BACK_GREEN    "42"
  90. #define VT_COL_BACK_YELLOW   "43"
  91. #define VT_COL_BACK_BLUE     "44"
  92. #define VT_COL_BACK_MAGENTA  "45"
  93. #define VT_COL_BACK_CYAN     "46"
  94. #define VT_COL_BACK_WHITE    "47"
  95. //
  96. #define VT_GOTOXY(X,Y)  "\33["Y";"X"f"
  97. #define VT_COLOR(C)     "\33["C"m"
  98. #define VT_RESET        "\33[m"
  99. #define VT_REVERSE      "\33[7m"
  100. #define VT_UNREVERSE    "\33[27m"
  101. #define VT_BOLD         "\33[1m"
  102. #define VT_UNBOLD       "\33[22m"
  103. #define VT_BLINK        "\33[5m"
  104. #define VT_UNBLINK      "\33[25m"
  105. //
  106. #define VT_CLREOL       "\33[K"
  107. #define VT_CLRSOL       "\33[1K"
  108. #define VT_CLRLIN       "\33[2K"
  109. #define VT_CLREOS       "\33[J"
  110. #define VT_CLRSOS       "\33[1J"
  111. #define VT_CLRSCR       "\33[2J"
  112. //
  113. #define csi(X)          printf(s_csi( X ));
  114. static void vt_clear(void) {
  115.   printf("%s%s%s",VT_RESET,VT_CLRSCR,VT_GOTOXY("1","0"));
  116. }
  117. static void vt_home(void) {
  118.   printf("%s%s",VT_RESET,VT_GOTOXY("1","0"));
  119. }
  120. //
  121.  
  122.  
  123. /*
  124. #define STYLE_STATVALUES VT_COLOR(VT_COL_TEXT_BLACK)
  125. #define STYLE_STATTEXT   VT_COLOR(VT_COL_TEXT_BLUE)   
  126. */
  127. #define STYLE_STATVALUES VT_BOLD
  128. #define STYLE_STATTEXT   VT_UNBOLD
  129. #define STYLE_STATRESET  VT_UNBOLD
  130. #define NStatsBuffer     14
  131. #define MAX_LEN_INPROGRESS 40
  132.  
  133. static int use_show;
  134.  
  135. int main(int argc, char **argv) {
  136.   int ret = 0;
  137.   hts_init();
  138.  
  139.   /*
  140.   hts_htmlcheck_init         = (t_hts_htmlcheck_init)           htswrap_read("init");
  141. Log: "engine: init"
  142.  
  143.   hts_htmlcheck_uninit       = (t_hts_htmlcheck_uninit)         htswrap_read("free");
  144. Log: "engine: free"
  145.  
  146.   hts_htmlcheck_start        = (t_hts_htmlcheck_start)          htswrap_read("start");
  147. Log: "engine: start"
  148.  
  149.   hts_htmlcheck_end          = (t_hts_htmlcheck_end)            htswrap_read("end");
  150. Log: "engine: end"
  151.  
  152.   hts_htmlcheck_chopt        = (t_hts_htmlcheck_chopt)          htswrap_read("change-options");
  153. Log: "engine: change-options"
  154.  
  155.   hts_htmlcheck_preprocess   = (t_hts_htmlcheck_process)        htswrap_read("preprocess-html");
  156. Log: "preprocess-html: <url>"
  157.  
  158.   hts_htmlcheck_postprocess   = (t_hts_htmlcheck_process)        htswrap_read("postprocess-html");
  159. Log: "postprocess-html: <url>"
  160.  
  161. hts_htmlcheck              = (t_hts_htmlcheck)                htswrap_read("check-html");
  162. Log: "check-html: <url>"
  163.  
  164.   hts_htmlcheck_query        = (t_hts_htmlcheck_query)          htswrap_read("query");
  165.   hts_htmlcheck_query2       = (t_hts_htmlcheck_query2)         htswrap_read("query2");
  166.   hts_htmlcheck_query3       = (t_hts_htmlcheck_query3)         htswrap_read("query3");
  167.   hts_htmlcheck_loop         = (t_hts_htmlcheck_loop)           htswrap_read("loop");
  168.   hts_htmlcheck_check        = (t_hts_htmlcheck_check)          htswrap_read("check-link");
  169. Log: none
  170.  
  171.   hts_htmlcheck_pause        = (t_hts_htmlcheck_pause)          htswrap_read("pause");
  172. Log: "pause: <lockfile>"
  173.  
  174.   hts_htmlcheck_filesave     = (t_hts_htmlcheck_filesave)       htswrap_read("save-file");
  175.   hts_htmlcheck_linkdetected = (t_hts_htmlcheck_linkdetected)   htswrap_read("link-detected");
  176.   hts_htmlcheck_linkdetected2 = (t_hts_htmlcheck_linkdetected2)   htswrap_read("link-detected2");
  177. Log: none
  178.  
  179.   hts_htmlcheck_xfrstatus    = (t_hts_htmlcheck_xfrstatus)      htswrap_read("transfer-status");
  180. Log: 
  181.     "engine: transfer-status: link updated: <url> -> <file>"
  182.   | "engine: transfer-status: link added: <url> -> <file>"
  183.   | "engine: transfer-status: link recorded: <url> -> <file>"
  184.   | "engine: transfer-status: link link error (<errno>, '<err_msg>'): <url>"
  185.   hts_htmlcheck_savename     = (t_hts_htmlcheck_savename  )     htswrap_read("save-name");
  186. Log: 
  187.     "engine: save-name: local name: <url> -> <file>"
  188. */
  189.   
  190.   htswrap_add("init",htsshow_init);
  191.   htswrap_add("free",htsshow_uninit);
  192.   htswrap_add("start",htsshow_start);
  193.   htswrap_add("change-options",htsshow_chopt);
  194.   htswrap_add("end",htsshow_end);
  195.   htswrap_add("preprocess-html",htsshow_preprocesshtml);
  196.   htswrap_add("postprocess-html",htsshow_preprocesshtml);
  197.   htswrap_add("check-html",htsshow_checkhtml);
  198.   htswrap_add("loop",htsshow_loop);
  199.   htswrap_add("query",htsshow_query);
  200.   htswrap_add("query2",htsshow_query2);
  201.   htswrap_add("query3",htsshow_query3);
  202.   htswrap_add("check-link",htsshow_check);
  203.   htswrap_add("pause",htsshow_pause);
  204.   htswrap_add("save-file",htsshow_filesave);
  205.   htswrap_add("link-detected",htsshow_linkdetected);
  206.   htswrap_add("link-detected2",htsshow_linkdetected2);
  207.   htswrap_add("transfer-status",htsshow_xfrstatus);
  208.   htswrap_add("save-name",htsshow_savename);
  209.   htswrap_add("send-header", htsshow_sendheader);
  210.   htswrap_add("receive-header", htsshow_receiveheader);
  211.  
  212.   ret = hts_main(argc,argv);
  213.   if (ret) {
  214.     fprintf(stderr, "* %s\n", hts_errmsg());
  215.   }
  216.   return ret;
  217. }
  218.  
  219.  
  220. /* CALLBACK FUNCTIONS */
  221.  
  222. /* Initialize the Winsock */
  223. static void __cdecl htsshow_init(void) {
  224. #ifdef _WIN32
  225.   {
  226.     WORD   wVersionRequested;   // requested version WinSock API
  227.     WSADATA wsadata;            // Windows Sockets API data
  228.     int stat;
  229.     wVersionRequested = 0x0101;
  230.     stat = WSAStartup( wVersionRequested, &wsadata );
  231.     if (stat != 0) {
  232.       printf("Winsock not found!\n");
  233.       return;
  234.     } else if (LOBYTE(wsadata.wVersion) != 1  && HIBYTE(wsadata.wVersion) != 1) {
  235.       printf("WINSOCK.DLL does not support version 1.1\n");
  236.       WSACleanup();
  237.       return;
  238.     }
  239.   }
  240. #endif
  241.  
  242. }
  243. static void __cdecl htsshow_uninit(void) {
  244. #ifdef _WIN32
  245.   WSACleanup();
  246. #endif
  247. }
  248. static int __cdecl htsshow_start(httrackp* opt) {
  249.   use_show=0;
  250.   if (opt->verbosedisplay==2) {
  251.     use_show=1;
  252.     vt_clear();
  253.   }
  254.   return 1; 
  255. }
  256. static int __cdecl htsshow_chopt(httrackp* opt) {
  257.   return htsshow_start(opt);
  258. }
  259. static int  __cdecl htsshow_end(void) { 
  260.   return 1; 
  261. }
  262. static int __cdecl htsshow_preprocesshtml(char** html,int* len,char* url_adresse,char* url_fichier) {
  263.   return 1;
  264. }
  265. static int __cdecl htsshow_checkhtml(char* html,int len,char* url_adresse,char* url_fichier) {
  266.   return 1;
  267. }
  268. static int __cdecl htsshow_loop(lien_back* back,int back_max,int back_index,int lien_n,int lien_tot,int stat_time, hts_stat_struct* stats) {    // appelΘ α chaque boucle de HTTrack
  269.   static TStamp prev_mytime=0; /* ok */
  270.   static t_InpInfo SInfo; /* ok */
  271.   //
  272.   TStamp mytime;
  273.   long int rate=0;
  274.   char st[256];
  275.   //
  276.   int stat_written=-1;
  277.   int stat_updated=-1;
  278.   int stat_errors=-1;
  279.   int stat_warnings=-1;
  280.   int stat_infos=-1;
  281.   int nbk=-1;
  282.   LLint nb=-1;
  283.   int stat_nsocket=-1;
  284.   LLint stat_bytes=-1;
  285.   LLint stat_bytes_recv=-1;
  286.   int irate=-1;
  287.   if (stats) {
  288.     stat_written=stats->stat_files;
  289.     stat_updated=stats->stat_updated_files;
  290.     stat_errors=stats->stat_errors;
  291.     stat_warnings=stats->stat_warnings;
  292.     stat_infos=stats->stat_infos;
  293.     nbk=stats->nbk;
  294.     stat_nsocket=stats->stat_nsocket;
  295.     irate=(int)stats->rate;
  296.     nb=stats->nb;
  297.     stat_bytes=stats->nb;
  298.     stat_bytes_recv=stats->HTS_TOTAL_RECV;
  299.   }
  300.  
  301.   if (!use_show)
  302.     return 1;
  303.  
  304.   mytime=mtime_local();
  305.   if ((stat_time>0) && (stat_bytes_recv>0))
  306.     rate=(int)(stat_bytes_recv/stat_time);
  307.   else
  308.     rate=0;    // pas d'infos
  309.  
  310.   /* Infos */
  311.   if (stat_bytes>=0) SInfo.stat_bytes=stat_bytes;      // bytes
  312.   if (stat_time>=0) SInfo.stat_time=stat_time;         // time
  313.   if (lien_tot>=0) SInfo.lien_tot=lien_tot; // nb liens
  314.   if (lien_n>=0) SInfo.lien_n=lien_n;       // scanned
  315.   SInfo.stat_nsocket=stat_nsocket;          // socks
  316.   if (rate>0)  SInfo.rate=rate;                // rate
  317.   if (irate>=0) SInfo.irate=irate;             // irate
  318.   if (SInfo.irate<0) SInfo.irate=SInfo.rate;
  319.   if (nbk>=0) SInfo.stat_back=nbk;
  320.   if (stat_written>=0) SInfo.stat_written=stat_written;
  321.   if (stat_updated>=0) SInfo.stat_updated=stat_updated;
  322.   if (stat_errors>=0)  SInfo.stat_errors=stat_errors;
  323.   if (stat_warnings>=0)  SInfo.stat_warnings=stat_warnings;
  324.   if (stat_infos>=0)  SInfo.stat_infos=stat_infos;
  325.  
  326.  
  327.   if ( ((mytime - prev_mytime)>100) || ((mytime - prev_mytime)<0) ) {
  328.     prev_mytime=mytime;
  329.  
  330.     
  331.     st[0]='\0';
  332.     qsec2str(st,stat_time);
  333.     vt_home();
  334.     printf(
  335.     VT_GOTOXY("1","1")
  336.     VT_CLREOL
  337.                            STYLE_STATTEXT   "Bytes saved:"
  338.                            STYLE_STATVALUES " \t%s"
  339.                            "\t"
  340.     VT_CLREOL
  341.     VT_GOTOXY("40","1")
  342.                            STYLE_STATTEXT   "Links scanned:"
  343.                            STYLE_STATVALUES " \t%d/%d (+%d)"
  344.     VT_CLREOL"\n"VT_CLREOL
  345.     VT_GOTOXY("1","2")
  346.                            STYLE_STATTEXT   "Time:"
  347.                                             " \t"
  348.                            STYLE_STATVALUES "%s"
  349.                            "\t"
  350.     VT_CLREOL
  351.     VT_GOTOXY("40","2")
  352.                            STYLE_STATTEXT   "Files written:"
  353.                                             " \t"
  354.                            STYLE_STATVALUES "%d"
  355.     VT_CLREOL"\n"VT_CLREOL
  356.     VT_GOTOXY("1","3")
  357.                            STYLE_STATTEXT   "Transfer rate:"
  358.                                             " \t"
  359.                            STYLE_STATVALUES "%s (%s)"
  360.                            "\t"
  361.     VT_CLREOL
  362.     VT_GOTOXY("40","3")
  363.                            STYLE_STATTEXT   "Files updated:"
  364.                                             " \t"
  365.                            STYLE_STATVALUES "%d"
  366.     VT_CLREOL"\n"VT_CLREOL
  367.     VT_GOTOXY("1","4")
  368.                            STYLE_STATTEXT   "Active connections:"
  369.                                             " \t"
  370.                            STYLE_STATVALUES "%d"
  371.                            "\t"
  372.     VT_CLREOL
  373.     VT_GOTOXY("40","4")
  374.                            STYLE_STATTEXT   "Errors:"
  375.                            STYLE_STATVALUES " \t"
  376.                            STYLE_STATVALUES "%d"
  377.     VT_CLREOL"\n"
  378.     STYLE_STATRESET
  379.     ,
  380.       /* */
  381.       (char*)int2bytes(SInfo.stat_bytes),
  382.       (int)lien_n,(int)SInfo.lien_tot,(int)nbk,
  383.       (char*)st,
  384.       (int)SInfo.stat_written,
  385.       (char*)int2bytessec(SInfo.irate),(char*)int2bytessec(SInfo.rate),
  386.       (int)SInfo.stat_updated,
  387.       (int)SInfo.stat_nsocket,
  388.       (int)SInfo.stat_errors
  389.       /* */
  390.       );
  391.  
  392.     
  393.     // parcourir registre des liens
  394.     if (back_index>=0) {  // seulement si index passΘ
  395.       int j,k;
  396.       int index=0;
  397.       int ok=0;         // idem
  398.       int l;            // idem
  399.       //
  400.       t_StatsBuffer StatsBuffer[NStatsBuffer];
  401.       
  402.       {
  403.         int i;
  404.         for(i=0;i<NStatsBuffer;i++) {
  405.           strcpybuff(StatsBuffer[i].state,"");
  406.           strcpybuff(StatsBuffer[i].name,"");
  407.           strcpybuff(StatsBuffer[i].file,"");
  408.           strcpybuff(StatsBuffer[i].url_sav,"");
  409.           StatsBuffer[i].back=0;
  410.           StatsBuffer[i].size=0;
  411.           StatsBuffer[i].sizetot=0;
  412.         }
  413.       }
  414.       for(k=0;k<2;k++) {    // 0: lien en cours 1: autres liens
  415.         for(j=0;(j<3) && (index<NStatsBuffer);j++) {  // passe de prioritΘ
  416.           int _i;
  417.           for(_i=0+k;(_i< max(back_max*k,1) ) && (index<NStatsBuffer);_i++) {  // no lien
  418.             int i=(back_index+_i)%back_max;    // commencer par le "premier" (l'actuel)
  419.             if (back[i].status>=0) {     // signifie "lien actif"
  420.               // int ok=0;  // OPTI
  421.               ok=0;
  422.               switch(j) {
  423.               case 0:     // prioritaire
  424.                 if ((back[i].status>0) && (back[i].status<99)) {
  425.                   strcpybuff(StatsBuffer[index].state,"receive"); ok=1;
  426.                 }
  427.                 break;
  428.               case 1:
  429.                 if (back[i].status==99) {
  430.                   strcpybuff(StatsBuffer[index].state,"request"); ok=1;
  431.                 }
  432.                 else if (back[i].status==100) {
  433.                   strcpybuff(StatsBuffer[index].state,"connect"); ok=1;
  434.                 }
  435.                 else if (back[i].status==101) {
  436.                   strcpybuff(StatsBuffer[index].state,"search"); ok=1;
  437.                 }
  438.                 else if (back[i].status==1000) {    // ohh le beau ftp
  439.                   sprintf(StatsBuffer[index].state,"ftp: %s",back[i].info); ok=1;
  440.                 }
  441.                 break;
  442.               default:
  443.                 if (back[i].status==0) {  // prΩt
  444.                   if ((back[i].r.statuscode==200)) {
  445.                     strcpybuff(StatsBuffer[index].state,"ready"); ok=1;
  446.                   }
  447.                   else if ((back[i].r.statuscode>=100) && (back[i].r.statuscode<=599)) {
  448.                     char tempo[256]; tempo[0]='\0';
  449.                     infostatuscode(tempo,back[i].r.statuscode);
  450.                     strcpybuff(StatsBuffer[index].state,tempo); ok=1;
  451.                   }
  452.                   else {
  453.                     strcpybuff(StatsBuffer[index].state,"error"); ok=1;
  454.                   }
  455.                 }
  456.                 break;
  457.               }
  458.               
  459.               if (ok) {
  460.                 char BIGSTK s[HTS_URLMAXSIZE*2];
  461.                 //
  462.                 StatsBuffer[index].back=i;        // index pour + d'infos
  463.                 //
  464.                 s[0]='\0';
  465.                 strcpybuff(StatsBuffer[index].url_sav,back[i].url_sav);   // pour cancel
  466.                 if (strcmp(back[i].url_adr,"file://"))
  467.                   strcatbuff(s,back[i].url_adr);
  468.                 else
  469.                   strcatbuff(s,"localhost");
  470.                 if (back[i].url_fil[0]!='/')
  471.                   strcatbuff(s,"/");
  472.                 strcatbuff(s,back[i].url_fil);
  473.                 
  474.                 StatsBuffer[index].file[0]='\0';
  475.                 {
  476.                   char* a=strrchr(s,'/');
  477.                   if (a) {
  478.                     strncatbuff(StatsBuffer[index].file,a,200);
  479.                     *a='\0';
  480.                   }
  481.                 }
  482.                 
  483.                 if ((l=strlen(s))<MAX_LEN_INPROGRESS)
  484.                   strcpybuff(StatsBuffer[index].name,s);
  485.                 else {
  486.                   // couper
  487.                   StatsBuffer[index].name[0]='\0';
  488.                   strncatbuff(StatsBuffer[index].name,s,MAX_LEN_INPROGRESS/2-2);
  489.                   strcatbuff(StatsBuffer[index].name,"...");
  490.                   strcatbuff(StatsBuffer[index].name,s+l-MAX_LEN_INPROGRESS/2+2);
  491.                 }
  492.                                
  493.                 if (back[i].r.totalsize>0) {  // taille prΘdΘfinie
  494.                   StatsBuffer[index].sizetot=back[i].r.totalsize;
  495.                   StatsBuffer[index].size=back[i].r.size;
  496.                 } else {  // pas de taille prΘdΘfinie
  497.                   if (back[i].status==0) {  // prΩt
  498.                     StatsBuffer[index].sizetot=back[i].r.size;
  499.                     StatsBuffer[index].size=back[i].r.size;
  500.                   } else {
  501.                     StatsBuffer[index].sizetot=8192;
  502.                     StatsBuffer[index].size=(back[i].r.size % 8192);
  503.                   }
  504.                 }
  505.                 index++;
  506.               }
  507.             }
  508.           }
  509.         }
  510.       }
  511.  
  512.       /* LF */
  513.       printf("%s\n",VT_CLREOL);
  514.  
  515.       /* Display current job */
  516.       {
  517.         int parsing=0;
  518.         printf("Current job: ");
  519.         if (!(parsing=hts_is_parsing(-1)))
  520.           printf("receiving files");
  521.         else {
  522.           switch(hts_is_testing()) {
  523.           case 0:
  524.             printf("parsing HTML file (%d%%)",parsing);
  525.             break;
  526.           case 1:
  527.             printf("parsing HTML file: testing links (%d%%)",parsing);
  528.             break;
  529.           case 2:
  530.             printf("purging files");
  531.             break;
  532.           case 3:
  533.             printf("loading cache");
  534.             break;
  535.           case 4:
  536.             printf("waiting (scheduler)");
  537.             break;
  538.           case 5:
  539.             printf("waiting (throttle)");
  540.             break;
  541.           }
  542.         }
  543.         printf("%s\n",VT_CLREOL);
  544.       }
  545.       
  546.       /* Display background jobs */
  547.       {
  548.         int i;
  549.         for(i=0;i<NStatsBuffer;i++) {
  550.           if (strnotempty(StatsBuffer[i].state)) {
  551.             printf(VT_CLREOL" %s - \t%s%s \t%s / \t%s",
  552.               StatsBuffer[i].state,
  553.               StatsBuffer[i].name,
  554.               StatsBuffer[i].file,
  555.               int2bytes(StatsBuffer[i].size),
  556.               int2bytes(StatsBuffer[i].sizetot)
  557.               );
  558.           }
  559.           printf("%s\n",VT_CLREOL);
  560.         }
  561.       }
  562.  
  563.  
  564.     }
  565.  
  566.   }
  567.  
  568.  
  569.  
  570.   return 1;
  571. }
  572. static char* __cdecl htsshow_query(char* question) {
  573.   static char s[12]=""; /* ok */
  574.   printf("%s\nPress <Y><Enter> to confirm, <N><Enter> to abort\n",question);
  575.   io_flush; linput(stdin,s,4);
  576.   return s;
  577. }
  578. static char* __cdecl htsshow_query2(char* question) {
  579.   static char s[12]=""; /* ok */
  580.   printf("%s\nPress <Y><Enter> to confirm, <N><Enter> to abort\n",question);
  581.   io_flush; linput(stdin,s,4);
  582.   return s;
  583. }
  584. static char* __cdecl htsshow_query3(char* question) {
  585.   static char line[256]; /* ok */
  586.   do {
  587.     io_flush; linput(stdin,line,206);
  588.   } while(!strnotempty(line));
  589.   printf("ok..\n");
  590.   return line;
  591. }
  592. static int __cdecl htsshow_check(char* adr,char* fil,int status) {
  593.   return -1;
  594. }
  595. static void __cdecl htsshow_pause(char* lockfile) {
  596.   while (fexist(lockfile)) {
  597.     Sleep(1000);
  598.   }
  599. }
  600. static void __cdecl htsshow_filesave(char* file) {
  601. }
  602. static int __cdecl htsshow_linkdetected(char* link) {
  603.   return 1;
  604. }
  605. static int __cdecl htsshow_linkdetected2(char* link, char* start_tag) {
  606.   return 1;
  607. }
  608. static int __cdecl htsshow_xfrstatus(lien_back* back) {
  609.   return 1;
  610. }
  611. static int __cdecl htsshow_savename(char* adr_complete,char* fil_complete,char* referer_adr,char* referer_fil,char* save) {
  612.   return 1;
  613. }
  614. static int __cdecl htsshow_sendheader(char* buff, char* adr, char* fil, char* referer_adr, char* referer_fil, htsblk* outgoing) {
  615.   return 1;
  616. }
  617. static int __cdecl htsshow_receiveheader(char* buff, char* adr, char* fil, char* referer_adr, char* referer_fil, htsblk* incoming) {
  618.   return 1;
  619. }
  620.  
  621. /* *** Various functions *** */
  622.  
  623.  
  624. static int fexist(char* s) {
  625.   struct stat st;
  626.   memset(&st, 0, sizeof(st));
  627.   if (stat(s, &st) == 0) {
  628.     if (S_ISREG(st.st_mode)) {
  629.       return 1;
  630.     }
  631.   }
  632.   return 0;
  633.  
  634. static int linput(FILE* fp,char* s,int max) {
  635.   int c;
  636.   int j=0;
  637.   do {
  638.     c=fgetc(fp);
  639.     if (c!=EOF) {
  640.       switch(c) {
  641.         case 13: break;  // sauter CR
  642.         case 10: c=-1; break;
  643.         case 9: case 12: break;  // sauter ces caractΦres
  644.         default: s[j++]=(char) c; break;
  645.       }
  646.     }
  647.   }  while((c!=-1) && (c!=EOF) && (j<(max-1)));
  648.   s[j]='\0';
  649.   return j;
  650. }
  651.  
  652. #endif
  653.